Reserved Identifiers
Pluto allows you to use reserved tokens such as if
from Lua and class
from Pluto as identifiers with shorthand table syntax and for goto labels.
Reserved tokens as identifiers with shorthand table syntaxpluto
local t = {class = "key"}print(t.class)
Reserved tokens as identifiers for goto labelspluto
-- Print every number besides five.for i = 1, 10 doif i == 5 thengoto continueendprint(i)::continue::end
However, variable names and function calls will not allow you to use reserved tokens as identifiers.